/* ========================================= */
/* SECTION */
/* ========================================= */

.strong-rail-section {
  width: 100%;
  background: #ffffff;
  padding: 120px 25px;
  overflow: hidden;
}

/* ========================================= */
/* CONTAINER */
/* ========================================= */

.strong-rail-container {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

/* ========================================= */
/* BLOCK */
/* ========================================= */

.rail-block {
  margin-bottom: 120px;
}

.rail-last {
  margin-bottom: 0;
}

/* ========================================= */
/* TITLE */
/* ========================================= */

.rail-title {
  font-size: 52px;
  line-height: 1.1;
  font-weight: 800;
  color: #10264a;

  margin: 0;

  font-family: Arial, sans-serif;

  letter-spacing: -1px;
}

/* ========================================= */
/* RED LINE */
/* ========================================= */

.rail-line {
  width: 62px;
  height: 5px;

  background: #e30613;

  border-radius: 50px;

  margin-top: 18px;
  margin-bottom: 40px;

  animation: lineGrow 1s ease;
}

/* ========================================= */
/* TEXT */
/* ========================================= */

.rail-text {
  font-size: 22px;
  line-height: 1.9;

  color: #2d2d2d;

  margin-bottom: 34px;

  font-family: Georgia, serif;
}

/* ========================================= */
/* LIST */
/* ========================================= */

.rail-list {
  list-style: none;

  margin: 40px 0 0;
  padding: 0;
}

.rail-list li {
  position: relative;

  padding-left: 28px;

  margin-bottom: 18px;

  font-size: 19px;
  line-height: 1.8;

  color: #10264a;

  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.rail-list li::before {
  content: "";

  position: absolute;

  left: 0;
  top: 13px;

  width: 8px;
  height: 8px;

  background: #e30613;

  border-radius: 50%;
}

.rail-list li:hover {
  transform: translateX(8px);

  color: #e30613;
}

/* ========================================= */
/* GRAPH */
/* ========================================= */

.graph-wrapper {
  width: 100%;

  display: flex;
  justify-content: center;

  margin: 60px 0;
}

.graph-wrapper img {
  width: 100%;
  max-width: 540px;

  display: block;

  border-radius: 16px;

  box-shadow:
    0 15px 45px rgba(0,0,0,0.08);

  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.graph-wrapper img:hover {
  transform:
    translateY(-10px)
    scale(1.02);

  box-shadow:
    0 30px 70px rgba(0,0,0,0.16);
}

/* ========================================= */
/* ANIMATION */
/* ========================================= */

.fade-up {
  opacity: 0;

  transform: translateY(60px);

  animation:
    fadeUp 1s ease forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

@keyframes fadeUp {

  from {
    opacity: 0;
    transform: translateY(60px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}

@keyframes lineGrow {

  from {
    width: 0;
    opacity: 0;
  }

  to {
    width: 62px;
    opacity: 1;
  }

}

/* ========================================= */
/* LARGE TABLET */
/* ========================================= */

@media (max-width: 1200px) {

  .rail-title {
    font-size: 46px;
  }

  .rail-text {
    font-size: 21px;
  }

}

/* ========================================= */
/* TABLET */
/* ========================================= */

@media (max-width: 992px) {

  .strong-rail-section {
    padding: 95px 30px;
  }

  .rail-block {
    margin-bottom: 95px;
  }

  .rail-title {
    font-size: 40px;
  }

  .rail-text {
    font-size: 19px;
    line-height: 1.8;
  }

  .rail-list li {
    font-size: 18px;
  }

}

/* ========================================= */
/* MOBILE */
/* ========================================= */

@media (max-width: 768px) {

  .strong-rail-section {
    padding: 80px 24px;
  }

  .rail-block {
    margin-bottom: 75px;
  }

  .rail-title {
    font-size: 32px;
    line-height: 1.2;
  }

  .rail-line {
    width: 52px;
    height: 4px;

    margin-bottom: 28px;
  }

  .rail-text {
    font-size: 17px;
    line-height: 1.8;
  }

  .rail-list {
    margin-top: 30px;
  }

  .rail-list li {
    font-size: 16px;
    line-height: 1.7;
  }

  .graph-wrapper {
    margin: 40px 0;
  }

}

/* ========================================= */
/* SMALL MOBILE */
/* ========================================= */

@media (max-width: 480px) {

  .strong-rail-section {
    padding: 65px 18px;
  }

  .rail-title {
    font-size: 27px;
  }

  .rail-text {
    font-size: 15px;
    line-height: 1.75;
  }

  .rail-list li {
    font-size: 15px;

    padding-left: 24px;
  }

  .rail-list li::before {
    width: 7px;
    height: 7px;

    top: 11px;
  }

  .graph-wrapper img {
    border-radius: 10px;
  }

}